Skip to content

Commit

Permalink
Merge pull request #979 from pankajskku/dev
Browse files Browse the repository at this point in the history
Making column names lowercase to make output table schema compatible with the Lakehouse
  • Loading branch information
touma-I authored Jan 29, 2025
2 parents c21a253 + db01dfd commit 5b32d2e
Show file tree
Hide file tree
Showing 24 changed files with 916 additions and 2,467 deletions.
4 changes: 2 additions & 2 deletions transforms/code/code_profiler/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ run-cli-sample:
source venv/bin/activate && \
$(PYTHON) -m dpk_$(TRANSFORM_NAME).transform_python \
--data_local_config "{ 'input_folder' : 'test-data/input', 'output_folder' : 'output'}" \
--language "language" \
--programming_language "programming_language" \
--contents "contents"

run-ray-cli-sample:
Expand All @@ -28,5 +28,5 @@ run-ray-cli-sample:
$(PYTHON) -m dpk_$(TRANSFORM_NAME).ray.transform \
--data_local_config "{ 'input_folder' : 'test-data/input', 'output_folder' : 'output'}" \
--run_locally True \
--language "language" \
--programming_language "programming_language" \
--contents "contents"
2 changes: 1 addition & 1 deletion transforms/code/code_profiler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The set of dictionary keys holding [code_profiler_transform](dpk_code_profiler/t
configuration for values are as follows:

* content - specifies the column name in the dataframe that has the code snippet
* language - specifies the programming languages of the code snippet
* programming_language - specifies the programming languages of the code snippet

## Running

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"input_folder": input_folder,
"output_folder": output_folder,
"contents": "contents",
"language": "language",
"programming_language": "programming_language",
}
params = {
# Data access. Only required parameters are specified
Expand Down
Loading

0 comments on commit 5b32d2e

Please sign in to comment.