We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a026d6 commit 412eb2dCopy full SHA for 412eb2d
src/csharp/Microsoft.Spark/Sql/Builder.cs
@@ -14,7 +14,9 @@ namespace Microsoft.Spark.Sql
14
/// </summary>
15
public sealed class Builder : IJvmObjectReferenceProvider
16
{
17
- private readonly Dictionary<string, string> _options = new Dictionary<string, string>();
+ private readonly Dictionary<string, string> _options =
18
+ new Dictionary<string, string>() { { "spark.app.kind", "sparkdotnet" } };
19
+
20
private readonly JvmObjectReference _jvmObject;
21
22
internal Builder()
0 commit comments