question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

AZ CLI join command doesn't appear to work

See original GitHub issue

This is autogenerated. Please review and update as needed.

Describe the bug

Trying to concatenate 2 files in ADLS Gen1 using the Azure CLI throws Python exception

Command Name az dls fs join

Errors:

should_retry() takes 1 positional argument but 4 were given
Traceback (most recent call last):
python3.6/site-packages/knack/cli.py, ln 206, in invoke
    cmd_result = self.invocation.execute(args)
cli/core/commands/__init__.py, ln 608, in execute
    raise ex
cli/core/commands/__init__.py, ln 666, in _run_jobs_serially
    results.append(self._run_job(expanded_arg, cmd_copy))
...
azure/datalake/store/core.py, ln 816, in concat
    retry_policy=NoRetryPolicy())
azure/datalake/store/lib.py, ln 429, in call
    if request_successful or not retry_policy.should_retry(response, last_exception, retry_count):
TypeError: should_retry() takes 1 positional argument but 4 were given

To Reproduce:

Steps to reproduce the behavior. Note that argument values have been redacted, as they may contain sensitive information.

  • Put any pre-requisite steps here…
  • az login
  • az dls fs join --destination-path '/user/someuser/test_folder2' --source-paths '/user/someuser/test_folder/*.csv' --ids {REDACTED}
  • az dls fs join --destination-path '/user/someuser/test_folder2' --source-paths '/user/someuser/test_folder/file1.csv /user/someuser/test_folder/file2.csv' --ids {REDACTED}
  • az dls fs join --destination-path '/user/someuser/test_folder2/all.csv' --source-paths '/user/someuser/test_folder/file1.csv /user/someuser/test_folder/file2.csv' --ids {REDACTED}

All versions of the command listed above fail with same error.

Expected Behavior

Having a single concatenated file in test_folder2

Environment Summary

Run from a Bastion connection on an Azure GPU machine (also replicates on locally installed AZ CLI)

Linux-5.3.0-1022-azure-x86_64-with-debian-buster-sid
Python 3.6.5
Shell: bash

azure-cli 2.0.80 *
azure-cli-ml 1.0.85

Extensions:
azure-cli-ml 1.0.85

Additional Context

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:6 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
akharitcommented, Aug 20, 2020

@Juliehzl So this code did a concat operation, which failed for some reason. It went into the retry loop with policy NoRetryPolicy, which had a bug. The sdk fix only makes sure that the NoRetryPolicy is correct. I don’t know why it failed on the first attempt. Could be anything from user error to server error.

After sdk update, if this issue still occurs, we will get a better exception message that we can use to debug. So upgrade is good to have. I have approved the pull request.

0reactions
Juliehzlcommented, Aug 20, 2020

Hi @akharit, it seems although there is sdk issue, the root cause should be error occurred during implementation, right? Anyway I think we should upgrade the package version for sdk issue. Could you help take a look at my #14689?

Read more comments on GitHub >

github_iconTop Results From Across the Web

Tips for using the Azure CLI successfully - Microsoft Learn
Learn tips for using Azure CLI successfully, such as output formats, passing parameter values, and quoting rules for different shells.
Read more >
The term 'az' is not recognized as the name of a cmdlet ...
First of all, Azure CLI is not the PowerShell module for the function. So you can not install the CLI module like the...
Read more >
Getting Started with the Azure CLI - Adam the Automator
To authenticate using a device code, open a terminal and: Run az login using the --use-device-code parameter. The az login command, this time, ......
Read more >
how to install azure cli and run Cli Commands - YouTube
Key Characteristics Azure CLI capabilities make it easy to work with ... CLI on Windows 02:20 Commands to Connect to CLI and create...
Read more >
Filtering AWS CLI output - AWS Command Line Interface
Steps can also use negative numbers to filter in the reverse order of an array as shown in the following example. $ aws...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found