File tree 14 files changed +23
-12
lines changed
14 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ namespace NKikimr {
22
22
23
23
namespace NFq {
24
24
25
- NActors::TActorId MakeYqPrivateProxyId ();
26
-
27
25
NActors::IActor* CreateYqlAnalyticsPrivateProxy (
28
26
const NConfig::TPrivateProxyConfig& privateProxyConfig,
29
27
TIntrusivePtr<ITimeProvider> timeProvider,
Original file line number Diff line number Diff line change 1
1
#include " config.h"
2
2
#include " control_plane_proxy.h"
3
3
#include " probes.h"
4
- #include " utils.h"
5
4
6
5
#include < ydb/core/fq/libs/actors/logging/log.h>
7
6
#include < ydb/core/fq/libs/compute/ydb/control_plane/compute_database_control_plane_service.h>
23
22
#include < ydb/core/fq/libs/control_plane_proxy/actors/utils.h>
24
23
#include < ydb/core/fq/libs/control_plane_proxy/actors/ydb_schema_query_actor.h>
25
24
#include < ydb/core/fq/libs/control_plane_proxy/events/events.h>
25
+ #include < ydb/core/fq/libs/control_plane_proxy/utils/utils.h>
26
26
#include < ydb/public/lib/fq/scope.h>
27
27
28
28
#include < ydb/library/actors/core/actor.h>
Original file line number Diff line number Diff line change @@ -394,4 +394,6 @@ struct TEvControlPlaneProxy {
394
394
};
395
395
};
396
396
397
+ NActors::TActorId ControlPlaneProxyActorId ();
398
+
397
399
}
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ LIBRARY()
2
+
3
+ PEERDIR(
4
+ ydb/public/api/protos
5
+ )
6
+
7
+ YQL_LAST_ABI_VERSION()
8
+
9
+ END()
Original file line number Diff line number Diff line change 33
33
RECURSE(
34
34
actors
35
35
events
36
+ utils
36
37
)
37
38
38
39
RECURSE_FOR_TESTS(
Original file line number Diff line number Diff line change @@ -250,6 +250,8 @@ struct TEvents {
250
250
};
251
251
};
252
252
253
+ NActors::TActorId MakeYqPrivateProxyId ();
254
+
253
255
} // namespace NFq
254
256
255
257
template <>
Original file line number Diff line number Diff line change 4
4
#include < ydb/core/grpc_services/service_fq.h>
5
5
#include < ydb/core/fq/libs/audit/events/events.h>
6
6
#include < ydb/core/fq/libs/audit/yq_audit_service.h>
7
- #include < ydb/core/fq/libs/control_plane_proxy/control_plane_proxy.h>
8
7
#include < ydb/core/fq/libs/control_plane_proxy/events/events.h>
9
- #include < ydb/core/fq/libs/control_plane_proxy/utils.h>
8
+ #include < ydb/core/fq/libs/control_plane_proxy/utils/utils .h>
10
9
#include < ydb/public/api/protos/draft/fq.pb.h>
11
10
#include < ydb/public/lib/fq/scope.h>
12
11
Original file line number Diff line number Diff line change 3
3
#include " rpc_deferrable.h"
4
4
5
5
#include < ydb/core/fq/libs/events/events.h>
6
- #include < ydb/core/fq/libs/actors/proxy_private.h>
7
6
#include < ydb/core/fq/libs/protos/fq_private.pb.h>
8
7
9
8
#include < ydb/library/actors/core/hfunc.h>
Original file line number Diff line number Diff line change 4
4
#include < memory>
5
5
6
6
#include < ydb/core/base/ticket_parser.h>
7
- #include < ydb/core/fq/libs/control_plane_proxy/utils.h>
7
+ #include < ydb/core/fq/libs/control_plane_proxy/utils/utils .h>
8
8
9
9
namespace NKikimr {
10
10
namespace NGRpcService {
Original file line number Diff line number Diff line change @@ -95,8 +95,7 @@ PEERDIR(
95
95
ydb/core/discovery
96
96
ydb/core/engine
97
97
ydb/core/formats
98
- ydb/core/fq/libs/actors
99
- ydb/core/fq/libs/control_plane_proxy
98
+ ydb/core/fq/libs/events
100
99
ydb/core/fq/libs/control_plane_proxy/events
101
100
ydb/core/grpc_services/base
102
101
ydb/core/grpc_services/counters
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ PEERDIR(
26
26
ydb/core/client/minikql_compile
27
27
ydb/core/formats
28
28
ydb/core/kqp/common
29
+ ydb/core/kqp/compute_actor
29
30
ydb/core/kqp/query_compiler
30
31
ydb/core/kqp/rm_service
31
32
ydb/core/kqp/topics
Original file line number Diff line number Diff line change @@ -1476,11 +1476,11 @@ class TKqpHost : public IKqpHost {
1476
1476
state->Configuration ->WriteThroughDqIntegration = true ;
1477
1477
state->Configuration ->AllowAtomicUploadCommit = queryType == EKikimrQueryType::Script;
1478
1478
state->MaxTasksPerStage = SessionCtx->ConfigPtr ()->MaxTasksPerStage .Get ();
1479
-
1480
1479
state->Configuration ->Init (FederatedQuerySetup->S3GatewayConfig , TypesCtx);
1480
+ state->Gateway = FederatedQuerySetup->HttpGateway ;
1481
1481
1482
- auto dataSource = NYql::CreateS3DataSource (state, FederatedQuerySetup-> HttpGateway );
1483
- auto dataSink = NYql::CreateS3DataSink (state, FederatedQuerySetup-> HttpGateway );
1482
+ auto dataSource = NYql::CreateS3DataSource (state);
1483
+ auto dataSink = NYql::CreateS3DataSink (state);
1484
1484
1485
1485
TypesCtx->AddDataSource (NYql::S3ProviderName, std::move (dataSource));
1486
1486
TypesCtx->AddDataSink (NYql::S3ProviderName, std::move (dataSink));
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ PEERDIR(
10
10
ydb/core/base
11
11
ydb/core/cms/console
12
12
ydb/core/kqp/common
13
+ ydb/core/kqp/compute_actor
13
14
ydb/core/kqp/counters
14
15
ydb/core/mind
15
16
ydb/core/protos
You can’t perform that action at this time.
0 commit comments