-
Notifications
You must be signed in to change notification settings - Fork 343
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[OBSOLETE] Added API handler functions (scan and get) for LRO #15408
Changes from 3 commits
fca532a
57e789e
58e0ad8
594fdfd
27bcbdd
cc632b7
0f44398
3a7019f
21bfc91
a606282
26c1e1f
4b8c345
a497e79
c7e5433
30e14e2
43fcc4c
7544c7a
4579b5a
6863ef4
07cdd7b
8ee994c
87d79a6
d068939
db43294
b8e73be
e8cd6ca
0c5311a
a45a982
7eb7600
8d50918
bef692f
e53fcaf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,364 @@ | ||
{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove the .vscode folder from the PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes done |
||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "java", | ||
"name": "Current File", | ||
"request": "launch", | ||
"mainClass": "${file}" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "WordCount", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.internal.app.runtime.batch.WordCount", | ||
"projectName": "cdap-app-fabric" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "RemoteExecutionJobMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.internal.app.runtime.distributed.remote.RemoteExecutionJobMain", | ||
"projectName": "cdap-app-fabric" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "RemoteLauncher", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.internal.app.runtime.distributed.remote.RemoteLauncher", | ||
"projectName": "cdap-app-fabric" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "MasterEnvironmentMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.MasterEnvironmentMain", | ||
"projectName": "cdap-app-fabric" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "CLIMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.cli.CLIMain", | ||
"projectName": "cdap-cli" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "Configuration", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.common.conf.Configuration", | ||
"projectName": "cdap-common" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "TransactionManagerDebuggerMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data2.transaction.TransactionManagerDebuggerMain", | ||
"projectName": "cdap-data-fabric" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "WordCount(1)", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.datapipeline.spark.WordCount", | ||
"projectName": "cdap-data-pipeline3_2.12" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "GenerateCLIDocsTable", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.docgen.cli.GenerateCLIDocsTable", | ||
"projectName": "cdap-docs-gen" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "UpgradeTool", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.etl.tool.UpgradeTool", | ||
"projectName": "cdap-etl-tools" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "RouterMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.gateway.router.RouterMain", | ||
"projectName": "cdap-gateway" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "HBaseVersion", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data2.util.hbase.HBaseVersion", | ||
"projectName": "cdap-hbase-compat-base" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "KafkaServerMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.kafka.run.KafkaServerMain", | ||
"projectName": "cdap-kafka" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "ClientVersions", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data.runtime.main.ClientVersions", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "MasterServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data.runtime.main.MasterServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "CoprocessorBuildTool", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data.tools.CoprocessorBuildTool", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "HBaseTableExporter", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data.tools.HBaseTableExporter", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "JobQueueDebugger", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data.tools.JobQueueDebugger", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "ReplicationStatusTool", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data.tools.ReplicationStatusTool", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "UpgradeTool(1)", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.data.tools.UpgradeTool", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "AppFabricServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.AppFabricServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "ArtifactCacheServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.ArtifactCacheServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "AuthenticationServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.AuthenticationServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "LogsServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.LogsServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "MessagingServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.MessagingServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "MetadataServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.MetadataServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "MetricsServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.MetricsServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "PreviewServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.PreviewServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "RouterServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.RouterServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "RuntimeServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.RuntimeServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "StorageMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.StorageMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "SupportBundleServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.SupportBundleServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "SystemMetricsExporterServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.SystemMetricsExporterServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "TetheringAgentServiceMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.environment.k8s.TetheringAgentServiceMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "MasterStartupTool", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.startup.MasterStartupTool", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "PostUpgradeJobMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.upgrade.PostUpgradeJobMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "UpgradeJobMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.master.upgrade.UpgradeJobMain", | ||
"projectName": "cdap-master" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "DataprocTool", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.runtime.spi.provisioner.dataproc.DataprocTool", | ||
"projectName": "cdap-runtime-ext-dataproc" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "DataprocJobMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.runtime.spi.runtimejob.DataprocJobMain", | ||
"projectName": "cdap-runtime-ext-dataproc" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "AuthenticationServerMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.security.runtime.AuthenticationServerMain", | ||
"projectName": "cdap-security" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "AccessTokenGeneratorService", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.security.tools.AccessTokenGeneratorService", | ||
"projectName": "cdap-security" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "AuthenticationTool", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.security.tools.AuthenticationTool", | ||
"projectName": "cdap-security" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "SparkContainerLauncher", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.app.runtime.spark.distributed.SparkContainerLauncher", | ||
"projectName": "cdap-spark-core3_2.12" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "SparkContainerDriverLauncher", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.app.runtime.spark.distributed.k8s.SparkContainerDriverLauncher", | ||
"projectName": "cdap-spark-core3_2.12" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "SparkContainerExecutorLauncher", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.app.runtime.spark.distributed.k8s.SparkContainerExecutorLauncher", | ||
"projectName": "cdap-spark-core3_2.12" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "StandaloneMain", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.StandaloneMain", | ||
"projectName": "cdap-standalone" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "StartStandaloneAndDeployApplicationHelper", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.StartStandaloneAndDeployApplicationHelper", | ||
"projectName": "cdap-standalone" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "WordCount(2)", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.WordCount", | ||
"projectName": "cdap-support-bundle" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "ConfigurationJsonTool", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.ui.ConfigurationJsonTool", | ||
"projectName": "cdap-ui" | ||
}, | ||
{ | ||
"type": "java", | ||
"name": "ClassicSparkProgram", | ||
"request": "launch", | ||
"mainClass": "io.cdap.cdap.spark.app.ClassicSparkProgram", | ||
"projectName": "cdap-unit-test" | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"java.debug.settings.onBuildFailureProceed": true | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.vscode/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add in a seperate section similar to intellij files |
||
*.class | ||
.*.swp | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add .vscode to local gitignore so that this files are not committed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. Done