?> ¿Cómo se gestiona la tolerancia a fallos para un... - Aide
QUESTION / RÉPONSE

¿Cómo se gestiona la tolerancia a fallos para una tabla en memoria?

0 consultations

Réponse

El parámetro `copies` especifica el número de copias redundantes de las filas. Un valor mayor proporciona una mayor tolerancia a fallos si un nodo del servidor falla, pero consume más memoria. Un valor de 0 deshabilita la tolerancia a fallos.
Action technique liée

Voir la documentation de addTable

Voir l'Action

Voir aussi

append
table

Fügt die Zeilen einer Quelltabelle an eine Zieltabelle an. Diese Aktion ist nützlich, um Daten aus zwei oder mehr Tabellen zu konsolidieren. Eine wichtige Voraussetzung ist, dass die Zieltabelle eine In-Memory-Tabelle sein muss. Die Spalten in der Quell- und Zieltabelle müssen nicht identisch sein; die Aktion hängt Daten basierend auf übereinstimmenden Spaltennamen an.

addCaslib
table

Fügt eine neue Caslib hinzu, um den Zugriff auf eine Datenquelle zu ermöglichen. Eine Caslib ist eine In-Memory-Speicherfläche, die Tabellen, Zugriffskontrollen und Datenquelleninformationen enthält. Sie ist ein grundlegendes Konzept in SAS Viya für die Datenverwaltung im Speicher.

addTable
table

The addTable action is a fundamental mechanism for transferring data from a client-side process to the CAS server, creating an in-memory table. Unlike actions like loadTable which load data from server-side sources, addTable is specifically used by client libraries (SAS SWAT for Python, R, Lua) to upload data structures (e.g., Pandas DataFrames, R data frames) directly into a CAS table. It provides detailed control over the resulting table's properties, such as column types, lengths, labels, and memory layout.