-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathDatabricksStatement.cs
135 lines (123 loc) · 4.95 KB
/
DatabricksStatement.cs
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
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System;
using Apache.Arrow.Adbc.Drivers.Apache;
using Apache.Arrow.Adbc.Drivers.Apache.Spark;
using Apache.Hive.Service.Rpc.Thrift;
namespace Apache.Arrow.Adbc.Drivers.Databricks
{
/// <summary>
/// Databricks-specific implementation of <see cref="AdbcStatement"/>
/// </summary>
internal class DatabricksStatement : SparkStatement
{
private bool useCloudFetch;
private bool canDecompressLz4;
private long maxBytesPerFile;
public DatabricksStatement(DatabricksConnection connection)
: base(connection)
{
// Inherit CloudFetch settings from connection
useCloudFetch = connection.UseCloudFetch;
canDecompressLz4 = connection.CanDecompressLz4;
maxBytesPerFile = connection.MaxBytesPerFile;
}
protected override void SetStatementProperties(TExecuteStatementReq statement)
{
base.SetStatementProperties(statement);
// Set CloudFetch capabilities
statement.CanDownloadResult = useCloudFetch;
statement.CanDecompressLZ4Result = canDecompressLz4;
statement.MaxBytesPerFile = maxBytesPerFile;
}
public override void SetOption(string key, string value)
{
switch (key)
{
case DatabricksParameters.UseCloudFetch:
if (bool.TryParse(value, out bool useCloudFetchValue))
{
this.useCloudFetch = useCloudFetchValue;
}
else
{
throw new ArgumentException($"Invalid value for {key}: {value}. Expected a boolean value.");
}
break;
case DatabricksParameters.CanDecompressLz4:
if (bool.TryParse(value, out bool canDecompressLz4Value))
{
this.canDecompressLz4 = canDecompressLz4Value;
}
else
{
throw new ArgumentException($"Invalid value for {key}: {value}. Expected a boolean value.");
}
break;
case DatabricksParameters.MaxBytesPerFile:
if (long.TryParse(value, out long maxBytesPerFileValue))
{
this.maxBytesPerFile = maxBytesPerFileValue;
}
else
{
throw new ArgumentException($"Invalid value for {key}: {value}. Expected a long value.");
}
break;
default:
base.SetOption(key, value);
break;
}
}
/// <summary>
/// Sets whether to use CloudFetch for retrieving results.
/// </summary>
/// <param name="useCloudFetch">Whether to use CloudFetch.</param>
internal void SetUseCloudFetch(bool useCloudFetch)
{
this.useCloudFetch = useCloudFetch;
}
/// <summary>
/// Gets whether CloudFetch is enabled.
/// </summary>
public bool UseCloudFetch => useCloudFetch;
/// <summary>
/// Gets the maximum bytes per file for CloudFetch.
/// </summary>
public long MaxBytesPerFile => maxBytesPerFile;
/// <summary>
/// Gets whether LZ4 decompression is enabled.
/// </summary>
public bool CanDecompressLz4 => canDecompressLz4;
/// <summary>
/// Sets whether the client can decompress LZ4 compressed results.
/// </summary>
/// <param name="canDecompressLz4">Whether the client can decompress LZ4.</param>
internal void SetCanDecompressLz4(bool canDecompressLz4)
{
this.canDecompressLz4 = canDecompressLz4;
}
/// <summary>
/// Sets the maximum bytes per file for CloudFetch.
/// </summary>
/// <param name="maxBytesPerFile">The maximum bytes per file.</param>
internal void SetMaxBytesPerFile(long maxBytesPerFile)
{
this.maxBytesPerFile = maxBytesPerFile;
}
}
}