October 17, 2021 at 8:51 pm
Hi all,
I have a package that uploaded files from S3 bucket.
Currently I need to add two another files. All previous files started with the phrase FA. The files that I need to add started from the phrase FARAN. And contain the name of the country in the format "Country_" or "_Counrty".
The S3 bucket has folders with the number of each month and the number of each day. All files are stored separately. For example:
2021/05/01 - Data of the 1st of May 2021
2021/05/02 - Data of the 2nd of May 2021
I changed C# code for this:
public void Main()
{
string accessKey = Convert.ToString(Dts.Variables["User::AWS_Access_Key"].Value);
string secretKey = Convert.ToString(Dts.Variables["User::AWS_Secret_Key"].Value);
string startKey = Convert.ToString(Dts.Variables["User::LastFileName"].Value);
string bucketName = Convert.ToString(Dts.Variables["User::S3_Bucket"].Value);
string countryCode = Convert.ToString(Dts.Variables["User::Country"].Value);
string sameFolder = startKey.Substring(0, startKey.LastIndexOf('/') + 1);
var sameFolderFiles = Convert.ToString(Dts.Variables["User::SameFolderFiles"].Value).Split(',');
try
{
AmazonS3Client s3Client = new AmazonS3Client(accessKey, secretKey, RegionEndpoint.EUWest1);
System.Collections.ArrayList files = new System.Collections.ArrayList();
ListObjectsRequest listRequest = new ListObjectsRequest
{
BucketName = bucketName,
//Prefix = countryCode + "/"
};
ListObjectsResponse listResponse;
do
{
// Get a list of objects
listResponse = s3Client.ListObjects(listRequest);
foreach (S3Object obj in listResponse.S3Objects)
{
if (
(((startKey.CompareTo(obj.Key) < 0) && (!obj.Key.StartsWith(sameFolder))) || ((obj.Key.StartsWith(sameFolder)) && (!sameFolderFiles.Contains(obj.Key))))
&& (obj.Key.LastIndexOf('/') != obj.Key.Length - 1)
&& ((obj.Key.Contains("_" + countryCode)) || obj.Key.Contains(countryCode + "_"))
&& ((obj.Key.Contains("FA")) || obj.Key.Contains("FARAN"))
)
files.Add(obj.Key.ToString());
}
listRequest.Marker = listResponse.NextMarker;
} while (listResponse.IsTruncated);
Dts.Variables["User::Collection"].Value = files;
Dts.TaskResult = (int)ScriptResults.Success;
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
Dts.TaskResult = (int)ScriptResults.Failure;
}
}
}
}?
I have two variables: LastFileName, SameFolderFiles.
This variables take data from the Audit using this code:
DECLARE @FILEPROCESSKEYPREVIOUS INT = 0
DECLARE @LASTFILENAME VARCHAR(500) = ''
SELECT TOP 1
@FILEPROCESSKEYPREVIOUS = ISNULL(File_Processing_Key,0),
@LASTFILENAME = ISNULL([FileName], '')
FROM Audit_File
WHERE Data_Source = 'Bucket'
AND Area = @Target_TableName
AND COUNTRY = @COUNTRYCODE
ORDER BY 1 DESC
DECLARE @FILEPATH VARCHAR(500) = substring(@LASTFILENAME, 0, len(@LASTFILENAME) - charindex('/', reverse(@LASTFILENAME), 0) + 2)
DECLARE @SAMEFOLDERFILES VARCHAR(1000) = ''
SELECT @SAMEFOLDERFILES += ISNULL([FileName], '') + ','
FROM Audit_File (NOLOCK)
WHERE Data_Source = 'Bucket'
AND Area = @Target_TableName
AND COUNTRY = @COUNTRYCODE
AND [FileName] LIKE @FILEPATH + '%'
SELECT @FILEPROCESSKEYPREVIOUS, @LASTFILENAME, SUBSTRING(@SAMEFOLDERFILES,0,LEN(@SAMEFOLDERFILES))
I still haven't uploaded these files.
Could you help me with advice?
October 18, 2021 at 8:41 am
You've given us lengthy pieces of code and a description of what you are trying to do, which is good.
But you have not described the problem in enough detail. What error messages are you seeing? Have you stepped through the code in debug mode? Which line of code is not working as intended?
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
October 30, 2021 at 9:19 pm
Hi Phil,
yes, I debugged the code and see that when the file with the name FARAN comes the package is down.
Looks like this code doesn't work good.
October 31, 2021 at 12:38 pm
Hi Phil,
yes, I debugged the code and see that when the file with the name FARAN comes the package is down. Looks like this code doesn't work good.
Did you read my previous message? It contains two questions, of which you have answered precisely zero.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
November 15, 2021 at 3:04 pm
Hi Phil,
1. I see only the message "Script was failed".
2.Not for sure how correctly I can debug C# code. I put breakpoint in the main function in C# code, but after that Studio is closing..
November 15, 2021 at 4:28 pm
Not sure whether I know how to debug C# 'correctly', but this is how I do it.
Start with this and see how you get on.
The absence of evidence is not evidence of absence
- Martin Rees
The absence of consumable DDL, sample data and desired results is, however, evidence of the absence of my response
- Phil Parkin
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply