-
Notifications
You must be signed in to change notification settings - Fork 24
Common Issues and Solutions
Rodrigo edited this page May 10, 2022
·
27 revisions
HPCC4J users should review this list of common issues and solutions before engaging the development team. If a specific issue isn't addressed in this list, feel free to report issues for the development team via our Jira system (Make sure to specify the project name: "JAPI" when creating new Jira issue).
DFSClient read fails, and reports: "Read failure for X copy locations" error accompanied by "createRemoteActivity: unathorized"
- DFSClient actions are reliant on properly configured "ClusterGroup" Keys on the target HPCC Systems cluster.
- User should contact the HPCC cluster admin and esure the Keys section is correctly configured
- Sample Keys configuration element:
<Keys> <ClusterGroup keyPairName="mythor" name="mythor"/> <ClusterGroup keyPairName="mythor" name="myroxie"/> <ClusterGroup keyPairName="mythor" name="hthor__myeclagent"/> <KeyPair name="mythor" privateKey="/home/hpcc/certificate/key.pem" publicKey="/home/hpcc/certificate/public.key.pem"/> </Keys>
- Common issues include: Invalid keypairs, inconsistent keypairs across all nodes, invalid keypair paths, no keypair associated with target ClusterGroup
- Answer 1
- Answer 2