Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Data_ETL_DotNet/Infrastructure/Bigquery.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using System;
using Google.Cloud.BigQuery.V2;
namespace Infrastructure
{
public class BigQuery
{
private readonly BigQueryClient _bqClient;
private const string projectId = "river-yew-256601";

public BigQuery(){
_bqClient = BigQueryClient.Create(projectId);
}
}
}
5 changes: 5 additions & 0 deletions Data_ETL_DotNet/Infrastructure/Infrastructure.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@

<ItemGroup>
<PackageReference Include="Apache.NMS.ActiveMQ" Version="1.8.0" />
<PackageReference Include="Confluent.Kafka" Version="1.8.2" />
<PackageReference Include="Confluent.SchemaRegistry" Version="1.8.2" />
<PackageReference Include="Confluent.SchemaRegistry.Serdes" Version="1.3.0" />
<PackageReference Include="Google.Cloud.BigQuery.V2" Version="2.3.0" />
<PackageReference Include="Google.Cloud.Dataproc.V1" Version="3.4.0" />
</ItemGroup>

</Project>
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,26 @@
"Apache.NMS.ActiveMQ": {
"target": "Package",
"version": "[1.8.0, )"
},
"Confluent.Kafka": {
"target": "Package",
"version": "[1.8.2, )"
},
"Confluent.SchemaRegistry": {
"target": "Package",
"version": "[1.8.2, )"
},
"Confluent.SchemaRegistry.Serdes": {
"target": "Package",
"version": "[1.3.0, )"
},
"Google.Cloud.BigQuery.V2": {
"target": "Package",
"version": "[2.3.0, )"
},
"Google.Cloud.Dataproc.V1": {
"target": "Package",
"version": "[3.4.0, )"
}
},
"imports": [
Expand Down
Loading