Blocking question

  • Hi all,

    We have a SSIS package that does 2 things in parallel: moves data from one partition to another within the same table.

    First, it truncates destination partition, then selects from source partition and inserts to destination one.

    But my select process is blocking truncate process, and truncate in turn is blocking insert to destination.

    system view sys.dm_tran_locks shows that my table (resource_associated_entity_id) is granted SCH-S lock mode.

    What would be a solution in this situation?

    Thanks

    • This topic was modified 2 weeks ago by  SQL Guy 1.
  • Why are you truncating partitions and loading them why not just use the partition sliding window to move partitions along and drop any you don’t need

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Run the tasks in series?

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.

  • Phil Parkin wrote:

    Run the tasks in series?

    that too, but more overhead than required considering partitions can be slid out

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • Perry Whittle wrote:

    Phil Parkin wrote:

    Run the tasks in series?

    that too, but more overhead than required considering partitions can be slid out

    I don't think you have a choice. I believe the truncate needs to take a sch-m lock on the table, not just the partition. Even switching the partition into an empty holding table requires the same lock. Does the SSIS insert have Fast Load selected? If so I think it will try to lock the table for bulk load. SQL can juggle locks from SSIS data flow inserts running in parallel, but I think the truncate has to run serially.

    How are you moving data between partitions? Are you changing the partition key in the data flow? What is the use case for this? How big is the table and how many partitions do you have?

  • Ed B wrote:

    I believe the truncate needs to take a sch-m lock on the table, not just the partition. Even switching the partition into an empty holding table requires the same lock.

    yes but its part of the sliding partition operation

     

    Ed B wrote:

    How are you moving data between partitions? Are you changing the partition key in the data flow? What is the use case for this? How big is the table and how many partitions do you have?

    OP is manually truncating a partition and then loading it based on their description

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" πŸ˜‰

  • change process so that you use staging tables (not tempdb!!!) for each task - and you switch in/out of these and it is also where you do your inserts (so it won't block the other operations on main tables)

    1 table name per parallel thread you have.

    thread 1

    • switch maintable partition into staging_table_1
    • truncate staging_table_1
    • insert into staging_table_1
    • switch staging_table_1 into maintable

    thread 2

    • switch maintable partition into staging_table_2
    • truncate staging_table_2
    • insert into staging_table_2
    • switch staging_table_2 into maintable

     

    there will still be some locks - but as long as you don't do the above in a single transaction (if this is a requirement you should consider changing the order slightly so that loading into staging_table is done prior to truncates - see below for an approach)

    thread 1

    • truncate staging_table_1
    • load staging_table_1
    • begin transaction

      • truncate maintable partition
      • switch staging_table_1 onto maintable partition

    • commit

    thread 2

    • truncate staging_table_2
    • load staging_table_2
    • begin transaction

      • truncate maintable partition
      • switch staging_table_2 onto maintable partition

    • commit

Viewing 7 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply