-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathclient.go
277 lines (249 loc) · 9.95 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
package client
import (
"compress/zlib"
"context"
"encoding/json"
"fmt"
"os"
"reflect"
"strings"
"time"
"github.com/apache/thrift/lib/go/thrift"
"github.com/databricks/databricks-sql-go/driverctx"
"github.com/databricks/databricks-sql-go/internal/cli_service"
"github.com/databricks/databricks-sql-go/internal/config"
"github.com/databricks/databricks-sql-go/logger"
"github.com/hashicorp/go-retryablehttp"
"github.com/pkg/errors"
)
// this is used to generate test data. Developer should change this manually
var RecordResults bool
type ThriftServiceClient struct {
*cli_service.TCLIServiceClient
}
func (tsc *ThriftServiceClient) OpenSession(ctx context.Context, req *cli_service.TOpenSessionReq) (*cli_service.TOpenSessionResp, error) {
msg, start := logger.Track("OpenSession")
resp, err := tsc.TCLIServiceClient.OpenSession(ctx, req)
if err != nil {
return nil, errors.Wrap(err, "open session request error")
}
log := logger.WithContext(SprintGuid(resp.SessionHandle.SessionId.GUID), driverctx.CorrelationIdFromContext(ctx), "")
defer log.Duration(msg, start)
if RecordResults {
recordRequestResponse(req, resp, time.Since(start))
}
return resp, CheckStatus(resp)
}
func (tsc *ThriftServiceClient) CloseSession(ctx context.Context, req *cli_service.TCloseSessionReq) (*cli_service.TCloseSessionResp, error) {
log := logger.WithContext(driverctx.ConnIdFromContext(ctx), driverctx.CorrelationIdFromContext(ctx), "")
msg, start := logger.Track("CloseSession")
defer log.Duration(msg, start)
resp, err := tsc.TCLIServiceClient.CloseSession(ctx, req)
if err != nil {
return resp, errors.Wrap(err, "close session request error")
}
if RecordResults {
recordRequestResponse(req, resp, time.Since(start))
}
return resp, CheckStatus(resp)
}
func (tsc *ThriftServiceClient) FetchResults(ctx context.Context, req *cli_service.TFetchResultsReq) (*cli_service.TFetchResultsResp, error) {
log := logger.WithContext(driverctx.ConnIdFromContext(ctx), driverctx.CorrelationIdFromContext(ctx), SprintGuid(req.OperationHandle.OperationId.GUID))
msg, start := logger.Track("FetchResults")
defer log.Duration(msg, start)
resp, err := tsc.TCLIServiceClient.FetchResults(ctx, req)
if err != nil {
return resp, errors.Wrap(err, "fetch results request error")
}
if RecordResults {
recordRequestResponse(req, resp, time.Since(start))
}
return resp, CheckStatus(resp)
}
func (tsc *ThriftServiceClient) GetResultSetMetadata(ctx context.Context, req *cli_service.TGetResultSetMetadataReq) (*cli_service.TGetResultSetMetadataResp, error) {
log := logger.WithContext(driverctx.ConnIdFromContext(ctx), driverctx.CorrelationIdFromContext(ctx), SprintGuid(req.OperationHandle.OperationId.GUID))
msg, start := logger.Track("GetResultSetMetadata")
defer log.Duration(msg, start)
resp, err := tsc.TCLIServiceClient.GetResultSetMetadata(ctx, req)
if err != nil {
return resp, errors.Wrap(err, "get result set metadata request error")
}
if RecordResults {
recordRequestResponse(req, resp, time.Since(start))
}
return resp, CheckStatus(resp)
}
func (tsc *ThriftServiceClient) ExecuteStatement(ctx context.Context, req *cli_service.TExecuteStatementReq) (*cli_service.TExecuteStatementResp, error) {
msg, start := logger.Track("ExecuteStatement")
resp, err := tsc.TCLIServiceClient.ExecuteStatement(context.Background(), req)
if err != nil {
return resp, errors.Wrap(err, "execute statement request error")
}
if RecordResults {
recordRequestResponse(req, resp, time.Since(start))
}
if resp != nil && resp.OperationHandle != nil {
log := logger.WithContext(driverctx.ConnIdFromContext(ctx), driverctx.CorrelationIdFromContext(ctx), SprintGuid(resp.OperationHandle.OperationId.GUID))
defer log.Duration(msg, start)
}
return resp, CheckStatus(resp)
}
func (tsc *ThriftServiceClient) GetOperationStatus(ctx context.Context, req *cli_service.TGetOperationStatusReq) (*cli_service.TGetOperationStatusResp, error) {
log := logger.WithContext(driverctx.ConnIdFromContext(ctx), driverctx.CorrelationIdFromContext(ctx), SprintGuid(req.OperationHandle.OperationId.GUID))
msg, start := logger.Track("GetOperationStatus")
defer log.Duration(msg, start)
resp, err := tsc.TCLIServiceClient.GetOperationStatus(ctx, req)
if err != nil {
return resp, errors.Wrap(err, "get operation status request error")
}
if RecordResults {
recordRequestResponse(req, resp, time.Since(start))
}
return resp, CheckStatus(resp)
}
func (tsc *ThriftServiceClient) CloseOperation(ctx context.Context, req *cli_service.TCloseOperationReq) (*cli_service.TCloseOperationResp, error) {
log := logger.WithContext(driverctx.ConnIdFromContext(ctx), driverctx.CorrelationIdFromContext(ctx), SprintGuid(req.OperationHandle.OperationId.GUID))
msg, start := logger.Track("CloseOperation")
defer log.Duration(msg, start)
resp, err := tsc.TCLIServiceClient.CloseOperation(ctx, req)
if err != nil {
return resp, errors.Wrap(err, "close operation request error")
}
if RecordResults {
recordRequestResponse(req, resp, time.Since(start))
}
return resp, CheckStatus(resp)
}
func (tsc *ThriftServiceClient) CancelOperation(ctx context.Context, req *cli_service.TCancelOperationReq) (*cli_service.TCancelOperationResp, error) {
log := logger.WithContext(driverctx.ConnIdFromContext(ctx), driverctx.CorrelationIdFromContext(ctx), SprintGuid(req.OperationHandle.OperationId.GUID))
msg, start := logger.Track("CancelOperation")
defer log.Duration(msg, start)
resp, err := tsc.TCLIServiceClient.CancelOperation(ctx, req)
if err != nil {
return resp, errors.Wrap(err, "cancel operation request error")
}
if RecordResults {
recordRequestResponse(req, resp, time.Since(start))
}
return resp, CheckStatus(resp)
}
// log.Debug().Msg(fmt.Sprint(c.transport.response.StatusCode))
// log.Debug().Msg(c.transport.response.Header.Get("X-Databricks-Org-Id"))
// log.Debug().Msg(c.transport.response.Header.Get("x-databricks-error-or-redirect-message"))
// log.Debug().Msg(c.transport.response.Header.Get("x-thriftserver-error-message"))
// log.Debug().Msg(c.transport.response.Header.Get("x-databricks-reason-phrase"))
// This is a wrapper of the http transport so we can have access to response code and headers
// It is important to know the code and headers to know if we need to retry or not
func InitThriftClient(cfg *config.Config) (*ThriftServiceClient, error) {
endpoint := cfg.ToEndpointURL()
tcfg := &thrift.TConfiguration{
TLSConfig: cfg.TLSConfig,
}
var protocolFactory thrift.TProtocolFactory
switch cfg.ThriftProtocol {
case "compact":
protocolFactory = thrift.NewTCompactProtocolFactoryConf(tcfg)
case "simplejson":
protocolFactory = thrift.NewTSimpleJSONProtocolFactoryConf(tcfg)
case "json":
protocolFactory = thrift.NewTJSONProtocolFactory()
case "binary":
protocolFactory = thrift.NewTBinaryProtocolFactoryConf(tcfg)
case "header":
protocolFactory = thrift.NewTHeaderProtocolFactoryConf(tcfg)
default:
return nil, errors.Errorf("invalid protocol specified %s", cfg.ThriftProtocol)
}
if cfg.ThriftDebugClientProtocol {
protocolFactory = thrift.NewTDebugProtocolFactoryWithLogger(protocolFactory, "client:", thrift.StdLogger(nil))
}
var tTrans thrift.TTransport
var err error
switch cfg.ThriftTransport {
case "http":
retryableClient := retryablehttp.NewClient()
retryableClient.HTTPClient.Timeout = cfg.ClientTimeout
// TODO
// add custom retryableClient.CheckRetry to retry based on thrift server headers and response code
tTrans, err = thrift.NewTHttpClientWithOptions(endpoint, thrift.THttpClientOptions{Client: retryableClient.HTTPClient})
thriftHttpClient := tTrans.(*thrift.THttpClient)
userAgent := fmt.Sprintf("%s/%s", cfg.DriverName, cfg.DriverVersion)
if cfg.UserAgentEntry != "" {
userAgent = fmt.Sprintf("%s/%s (%s)", cfg.DriverName, cfg.DriverVersion, cfg.UserAgentEntry)
}
thriftHttpClient.SetHeader("User-Agent", userAgent)
case "framed":
tTrans = thrift.NewTFramedTransportConf(tTrans, tcfg)
case "buffered":
tTrans = thrift.NewTBufferedTransport(tTrans, 8192)
case "zlib":
tTrans, err = thrift.NewTZlibTransport(tTrans, zlib.BestCompression)
default:
return nil, errors.Errorf("invalid transport specified `%s`", cfg.ThriftTransport)
}
if err != nil {
return nil, err
}
if err = tTrans.Open(); err != nil {
return nil, errors.Wrapf(err, "failed to open http transport for endpoint %s", endpoint)
}
iprot := protocolFactory.GetProtocol(tTrans)
oprot := protocolFactory.GetProtocol(tTrans)
tclient := cli_service.NewTCLIServiceClient(thrift.NewTStandardClient(iprot, oprot))
tsClient := &ThriftServiceClient{tclient}
return tsClient, nil
}
// ThriftResponse respresents thrift rpc response
type ThriftResponse interface {
GetStatus() *cli_service.TStatus
}
func CheckStatus(resp interface{}) error {
rpcresp, ok := resp.(ThriftResponse)
if ok {
status := rpcresp.GetStatus()
if status.StatusCode == cli_service.TStatusCode_ERROR_STATUS {
return errors.New(status.GetErrorMessage())
}
if status.StatusCode == cli_service.TStatusCode_INVALID_HANDLE_STATUS {
return errors.New("thrift: invalid handle")
}
// SUCCESS, SUCCESS_WITH_INFO, STILL_EXECUTING are ok
return nil
}
return errors.New("thrift: invalid response")
}
func SprintGuid(bts []byte) string {
if len(bts) == 16 {
return fmt.Sprintf("%x-%x-%x-%x-%x", bts[0:4], bts[4:6], bts[6:8], bts[8:10], bts[10:16])
}
logger.Warn().Msgf("GUID not valid: %x", bts)
return fmt.Sprintf("%x", bts)
}
type rr struct {
RequestType string
RequestTime time.Duration
Request any
Response any
}
func recordRequestResponse(req, resp any, dur time.Duration) {
rt := reflect.TypeOf(req).String()
rt = rt[strings.LastIndex(rt, ".")+1:]
pair := rr{
RequestType: rt,
RequestTime: dur,
Request: req,
Response: resp,
}
j, err := json.MarshalIndent(&pair, "", " ")
// fmt.Println(string(j))
if err == nil {
f, err := os.OpenFile("session.json", os.O_APPEND|os.O_WRONLY|os.O_CREATE, 0600)
if err == nil {
defer f.Close()
_, err = f.WriteString(string(j) + ",\n")
if err != nil {
fmt.Println(err.Error())
}
}
}
}