CDK Step Function Map state working with "Distributed Mode"

0

Hi we are from AutoScout24.com in dcs_core team,

We are using cdk to deploy state machine and we are using "Map" state with "inline mode", and we are currently required to use "Distributed mode" due to "inline mode" limitations, but we could not find any documentation or examples related with it does latest cdk version supports working "Map with Distributed mode" ?

Can you please help ? Thank you.

2 Respuestas
1
Respuesta aceptada

Update: As Anentropic pointed out, the CDK Construct has been released: https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.DistributedMap.html


Hi Umut,

as of today, Distributed Map isn't supported by the CDK yet (https://github.com/aws/aws-cdk/issues/23216). However, you can always use the CustomState construct to drop in any ASL that’s not natively implemented in the L2 constructs.

For example:

const custom = new sfn.CustomState(this, 'distributed map state', {
  stateJson: { 
    "Type": 'Map',
    "ItemReader": {
      "ReaderConfig": {
        "InputType": "CSV",
        "CSVHeaderLocation": "FIRST_ROW"
      },
      "Resource": "arn:aws:states:::s3:getObject",
      "Parameters": {
         ...
      }
    },
    "ItemProcessor": {
      "ProcessorConfig": {
        "Mode": "DISTRIBUTED",
        "ExecutionType": "EXPRESS"
      },
      "StartAt": "...",
      "States": {
          ....
        }
      }
    }
  }
});

Please upvote/accept this answer if you found it helpful.

profile pictureAWS
EXPERTO
respondido hace 10 meses
  • Is there any progress on getting DistributedMap support available directly in the CDK, as an L2 construct or otherwise?

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas