Skip to content

Commit

Permalink
Merge b8304ea into a6425c2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hor911 authored May 28, 2024
2 parents a6425c2 + b8304ea commit fc9094d
Show file tree
Hide file tree
Showing 35 changed files with 3,877 additions and 1,570 deletions.
2 changes: 1 addition & 1 deletion ydb/core/base/events.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ struct TKikimrEvents : TEvents {
ES_GRAPH,
ES_REPLICATION_WORKER,
ES_CHANGE_EXCHANGE,
ES_S3_FILE_QUEUE,
ES_S3_PROVIDER,
ES_NEBIUS_ACCESS_SERVICE,
ES_REPLICATION_SERVICE,
ES_BACKUP_SERVICE,
Expand Down
14 changes: 14 additions & 0 deletions ydb/library/yql/providers/s3/actors/parquet_cache.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include "parquet_cache.h"

namespace NYql::NDq {

NActors::TActorId ParquetCacheActorId() {
constexpr TStringBuf name = "PRQTCACH";
return NActors::TActorId(0, name);
}

NActors::IActor* CreateParquetCache() {
return nullptr;
}

} // namespace NYql::NDq
11 changes: 11 additions & 0 deletions ydb/library/yql/providers/s3/actors/parquet_cache.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#pragma once

#include <ydb/library/actors/core/actor.h>

namespace NYql::NDq {

NActors::TActorId ParquetCacheActorId();

NActors::IActor* CreateParquetCache();

} // namespace NYql::NDq
Loading

0 comments on commit fc9094d

Please sign in to comment.